const google.golang.org/grpc/internal/transport.upcomingDefaultHeaderListSize
7 uses
google.golang.org/grpc/internal/transport (current package)
defaults.go#L49: upcomingDefaultHeaderListSize = uint32(8 << 10)
http2_client.go#L327: maxHeaderListSize = upcomingDefaultHeaderListSize
http2_client.go#L889: if !envconfig.Enable8KBDefaultHeaderListSize && sz > int64(upcomingDefaultHeaderListSize) {
http2_client.go#L890: t.logger.Warningf("Header list size to send (%d bytes) is larger than the upcoming default limit (%d bytes). In release v1.82.0, GRPC_GO_EXPERIMENTAL_ENABLE_8KB_DEFAULT_HEADER_LIST_SIZE will be enabled by default, enforcing this limit.", sz, upcomingDefaultHeaderListSize)
http2_server.go#L175: maxHeaderListSize = upcomingDefaultHeaderListSize
http2_server.go#L959: if !envconfig.Enable8KBDefaultHeaderListSize && sz > int64(upcomingDefaultHeaderListSize) {
http2_server.go#L960: t.logger.Warningf("Header list size to send (%d bytes) is larger than the upcoming default limit (%d bytes). In release v1.82.0, GRPC_GO_EXPERIMENTAL_ENABLE_8KB_DEFAULT_HEADER_LIST_SIZE will be enabled by default, enforcing this limit.", sz, upcomingDefaultHeaderListSize)